Quickbook API
Retrieving a specific booking product by account number
GET '/products/accountNumber'
Description
Get particular product by account number.
Authorization
The Authorization header carried the API access token in the format AL client_id:client_secret. Please see Security page for more information.
Content type
application/json
Uri Parameters
| Parameters | Description | Required? |
|---|---|---|
| accountNumber | account number associated with a specific product service | true |
Response
{
"services": [
{
"name": "Select",
"code": "standard_car",
"description": "Everyday choice and comfort - professional driver and medium car for up to 4 people and 2 large bags (TBS Base)",
"type": "PASSENGER",
"passengers": 2,
"luggage": 4,
"bicycle": false
}
]
}| Parameters | Description |
|---|---|
| name | Booking product name |
| code | Code associated with a specific product |
| description | Booking product description |
| image | Graphics representation of the product |
| type | Booking product type |
| passengers | Number of passengers allowed for this product |
| luggage | Number of luggage allowed for this product |